from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

82572

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Installation Guides

Summary

This text describes the installation and configuration of a heavy duty internet server running a gentoo linux distribution. The server will have to run 24/7 with minimum downtime for maintenance and is connected to a 100MBit Internet backbone. I choose gentoo as distribution because of the really fast availability of new versions and security patches for all installed packages. Everything will be compiled for the special needs of this maschine with various security enhancement features which ship with the available glibc/gcc versions (like stack smashing protections).

Changelog

Previous versions used to split the swap space across the raid harddiscs and not to mirror it. In case of a hard disc failure your system might(will) crash. This is not intended... (Thanks to Nick Rosier to point this out).

Note

This howto is NOT suited for users who run their first linux (or gentoo) install. Previous linux knowledge is needed, not every detail will be explained here.

System descriptions

Hardware

The system is a dual Xeon 2.66 Ghz with 512KB cache size and enabled hyperthreading.

System storage will be 2 80 GB HDDs running in a raid 1 with network backup every night. The filesystem will be XFS on a software raid 1 (mirroring) system.

Memory: 1GB, build in network card, no sound used, onboard graphics.

The machine will have an UPS and external cooling and will be mounted in a 19" rack.

Software

The system will be a heavy duty webserver running at least the following services/daemons:

  • Apache 2 as webserver (with many virtual hosts)
  • openLDAP for authentication for smtp/imap/pop3 and other login services, but not for system login
  • postfix with sasl2 support as MTA (Mail Transfer Agent)
  • courier-imap for imap access
  • courier-pop3
  • mysql as database backend
  • php (hardened) for various web frontends
  • LeopardCMS (a highspeed content management system written in C) for websites
  • ldapphpadmin for administrating the ldap server
  • squirrelmail as webmail service
  • awstats for website statistics

Installation

The basic installation is explained in the wonderful gentoo installation handbook.

I will only describe the modification on each step.

I will use a stage 1 installation with the minimal boot CD.

Installation in quick style (refer to the handbook if you don't know how to do the individual step(s))

Booting:

  • Boot from the CD, load the right network drivers
  • Change root password to something we know.
  • Configure the network with the given ip address dns servers etc.
  • Start sshd (optional)

Partitioning the hdd(s)

I'm using fdisk to partition the hdds, use whatever you like best.

Attention: To be able to use the raid 1, both hdds must be partitioned exactly identical, so write down the setting when partitioning.

My HDD layout :

/dev/hda1 boot partition 10 MB,  partition type: fd (Linux raid autodetect)
/dev/hda2 swap partition 250 MB, partition type: 82 (Linux swap)
/dev/hda3 root partition remaining space, partition type: fd (Linux raid autodetect)
The same applies to the 2nd HDD.

Setting up the raid 1

edit/create the file /etc/raidtab and enter the following (adjust the devices if neccessary)

raiddev         /dev/md0
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda1
raid-disk       0
device          /dev/hdc1
raid-disk       1

raiddev         /dev/md2
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda3
raid-disk       0
device          /dev/hdc3
raid-disk       1

In case you want to mirror the swap:

raiddev         /dev/md1
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda2
raid-disk       0
device          /dev/hdc2
raid-disk       1

Note: I do not use a raid for the swap, I will explain the swap setup a bit later.
Please also see the comment at the bottom of this page, why this may cause trouble on a harddisk failure.

start the raid by running

raidstart --all
enter "cat /proc/mdstat"

You should see something like this:

Personalities : [raid1]
md0 : active raid1 hda1[1] hdc1[1]
      XXX blocks [2/2] [UU]
md2 : active raid1 hda3[1] hdc3[1]
      YYY blocks [2/2] [UU]

Now, after your raid is up and running, don't think about touching /dev/hda or /dev/hdc directly again. Only use /dev/md0 or /dev/md2.

Applying a Filesystem to a Partition

create your filesystems like it is described in the handbook, only use /dev/md0 and /dev/md2 for the target devices.

Activate the Swap Partitions

Because we are using 2 identical hdds, we have 2 swap partitions that we enable both.

Later in the /etc/fstab config we can tune a bit to make our swap faster.

Mounting

Now we follow the handbook a bit for mounting and downloading the needed stage 1 tarball. Remember, use /dev/mdX as partitions.

Configuring the Compile Options

I prefer to to use the full make.conf.default for configuration, so I copy it over before editing.

cp /mnt/gentoo/etc/make.conf.default /mnt/gentoo/etc/make.conf
now we edit the file
nano -w /mnt/gentoo/etc/make.conf

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

CFLAGS="-march=pentium4 -O2 -pipe" be careful, if you enable the hardened toolchain, never use more than -O2 for compiling.

If you have an AMD cpu, or a pentium2/3 change the -march setting to your cpu.

I set the MAKEOPTS to -j5 (number of CPUs plus one) (2 x Xeon with HT enabled makes 4 virtual CPUs)

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

USE="-X -gtk -gnome -alsa mysql apache2 ssl ssh openldap\
sasl2 pam pic pie hardened hardenedphp xml vhosts"
I don't want X, gtk, gnome or alsa. (This is a server)

But I want mysql, apache, a.s.o.

The flags pic, pie and hardened are used with the hardened toolchain provided by gentoo.

These make the executables less vulnerable to buffer overflow and other programming mistakes. As of the writing of this howto, the flags "pic, pie and hardened" cause some problems with some packages. Manual patching and fiddling may be needed.

UPDATE: I installed another server lately (Nov. 2005), no patching was needed any more.

Follow the installation manual including the Stage1 to Stage2 section.

It is always useful to download the packages first and after that, start the real bootstrapping process. There is nothing better than having a bootstrap failing after 60+ mins on the last package because the file was damaged on the ftp mirror.

Proceed from stage2 to stage3 the documented way.

This will take a while, in my case 71 packages will be installed.

Just keep yourself occupied with something, like writing a howto or something ;)

Now its time to configure the kernel as described in the manual

  • set the timezone
  • install a kernel. I used a hardened-sources kernel (version 2.6.7-r7)
  • check the symlink /usr/src/linnux
  • configure the kernel with make menuconfig
  • make sure to check SMP support in case of a multiple CPU machine.
  • If you use XFS and like to not loose parts of your filesystem data, disable preemptible kernel.
  • Think twice before enabling power management functions like software suspend.
  • You really don't want that your server goes into suspend mode during the night.
  • Warning: If you use MySQL, do not enable the PaX feature "Disallow ELF text relocations". Enabling this makes you unable to compile and run MySQL. *sniff*
  • compile the kernel (remember to use the -j5 flag like in the MAKEOPTS line).
  • install the kernel.

configuring /etc/fstab

enter the data as described in the manual, but use /dev/md0 and /dev/md2

for the swap line use the following 2 lines

/dev/hda2  none swap sw,pri=2 0 0
/dev/hdc2  none swap sw,pri=2 0 0
This way the kernel uses both hdds for swap with the same priority, this means some data will be swapped to one hdd, some to the other and both could be read/written at the same time. This gives a speed boost when you need swap (which should never happen on normal conditions...).
Or use
/dev/md2  none swap sw,pri=2 0 0
in case of a mirrored swap partion.

Enter the networking information as described in the handbook (ip, domainname, ...)

Continue with the installation manual until you got through the manual and

have the basic system running as you want.

While writing this howto, it was planned to have a part 2 to describe the installation of additional software like apache, postfix and others.

But since they are installed exactly as on a "normal" gentoo distribution, a part 2 is not really needed.

comments

Nick Rosier wrote in an email:
I just read this setup. IMHO there's a little flaw in the setup. Goal is to have as little downtime as possible. To gain maybe a bit more performance the author decided not to mirror swap. This is a bad idea. In case of a hard-disk failure part of your swapspace will be unavailable/corrupted meaning your system will possibly crash. I doubt that is what one wants.
Nick has a valid point.
In this setup I use ide harddisks. (yes, I know, SCSI would be better...)
If one of the hdds dies, its very likely that the system crashes any way. This is my experience with ide hdds.
If you use SCSI or SATA-drives, the situation might change. On those drives it might be better to use raid on the swap, too.
back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-12-23
mcelog - 208
Ebuild name:

app-admin/mcelog-208

Description

A tool to log and decode Machine Check Exceptions

Added to portage

2025-12-23

org-roam - 9999
Ebuild name:

app-emacs/org-roam-9999

Description

Rudimentary Roam replica with Org-mode

Added to portage

2025-12-23

2025-12-22
adwaita-icon-theme - 49.0
Ebuild name:

x11-themes/adwaita-icon-theme-49.0

Description

GNOME default icon theme

Added to portage

2025-12-22

apscheduler - 3.11.2
Ebuild name:

dev-python/apscheduler-3.11.2

Description

In-process task scheduler with Cron-like capabilities

Added to portage

2025-12-22

asahi-sources - 6.17.11_p1
Ebuild name:

sys-kernel/asahi-sources-6.17.11_p1

Description

Asahi Linux kernel sources

Added to portage

2025-12-22

asyncssh - 2.22.0
Ebuild name:

dev-python/asyncssh-2.22.0

Description

Asynchronous SSHv2 client and server library

Added to portage

2025-12-22

bitcoin-core - 30.1
Ebuild name:

net-p2p/bitcoin-core-30.1

Description

Reference implementation of the Bitcoin cryptocurrency

Added to portage

2025-12-22

ctypes-sh - 1.2_p20240626
Ebuild name:

app-shells/ctypes-sh-1.2_p20240626

Description

Foreign function interface for bash

Added to portage

2025-12-22

dasbus - 1.7
Ebuild name:

dev-python/dasbus-1.7

Description

DBus library in Python 3

Added to portage

2025-12-22

derper - 1.92.1
Ebuild name:

net-vpn/derper-1.92.1

Description

DERP server for tailscale network

Added to portage

2025-12-22

erlang - 28.3
Ebuild name:

dev-lang/erlang-28.3

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2025-12-22

exo - 1.88.0
Ebuild name:

app-admin/exo-1.88.0

Description

Command-line tool for everything at Exoscale compute, storage, dns

Added to portage

2025-12-22

expected-lite - 0.10.0
Ebuild name:

dev-cpp/expected-lite-0.10.0

Description

Expected objects in C++11 and later in a single-file header-only libra

Added to portage

2025-12-22

fex-xtajit - 2512
Ebuild name:

app-emulation/fex-xtajit-2512

Description

A wine emulation dll for running x86 application on an arm64 host

Added to portage

2025-12-22

furo - 2025.12.19-r1
Ebuild name:

dev-python/furo-2025.12.19-r1

Description

Clean customisable Sphinx documentation theme

Added to portage

2025-12-22

furo - 2025.9.25-r1
Ebuild name:

dev-python/furo-2025.9.25-r1

Description

Clean customisable Sphinx documentation theme

Added to portage

2025-12-22

gcc - 16.0.0_p20251221
Ebuild name:

sys-devel/gcc-16.0.0_p20251221

Description

The GNU Compiler Collection

Added to portage

2025-12-22

git-sources - 6.19_rc2
Ebuild name:

sys-kernel/git-sources-6.19_rc2

Description

The very latest -git version of the Linux kernel

Added to portage

2025-12-22

gnome-backgrounds - 49.0
Ebuild name:

x11-themes/gnome-backgrounds-49.0

Description

A set of backgrounds packaged with the GNOME desktop

Added to portage

2025-12-22

gnome-terminal - 3.58.0
Ebuild name:

x11-terms/gnome-terminal-3.58.0

Description

A terminal emulator for GNOME

Added to portage

2025-12-22

gvfs - 1.56.1-r3
Ebuild name:

gnome-base/gvfs-1.56.1-r3

Description

Virtual filesystem implementation for GIO

Added to portage

2025-12-22

gvfs - 1.58.0
Ebuild name:

gnome-base/gvfs-1.58.0

Description

Virtual filesystem implementation for GIO

Added to portage

2025-12-22

hcloud - 1.58.0
Ebuild name:

app-admin/hcloud-1.58.0

Description

A command-line interface for Hetzner Cloud

Added to portage

2025-12-22

hwloc - 2.12.2
Ebuild name:

sys-apps/hwloc-2.12.2

Description

Displays the hardware topology in convenient formats

Added to portage

2025-12-22

i18n - 1.14.8
Ebuild name:

dev-ruby/i18n-1.14.8

Description

Add Internationalization support to your Ruby application

Added to portage

2025-12-22

idea-community - 2025.3.1
Ebuild name:

dev-util/idea-community-2025.3.1

Description

A complete toolset for web, mobile and enterprise development

Added to portage

2025-12-22

importlib-metadata - 8.7.1
Ebuild name:

dev-python/importlib-metadata-8.7.1

Description

Read metadata from Python packages

Added to portage

2025-12-22

intervaltree - 3.2.0-r1
Ebuild name:

dev-python/intervaltree-3.2.0-r1

Description

Editable interval tree data structure for Python 2 and 3

Added to portage

2025-12-22

jaraco-functools - 4.4.0
Ebuild name:

dev-python/jaraco-functools-4.4.0

Description

Additional functions used by other projects by developer jaraco

Added to portage

2025-12-22

kernel-hardening-checker - 0.6.17.1
Ebuild name:

app-admin/kernel-hardening-checker-0.6.17.1

Description

A tool for checking the security hardening options of t

Added to portage

2025-12-22

koleo-cli - 0.2.137.26
Ebuild name:

app-misc/koleo-cli-0.2.137.26

Description

A simple CLI for koleo.pl railway planner

Added to portage

2025-12-22

langkit - 25.0.0-r6
Ebuild name:

dev-ada/langkit-25.0.0-r6

Description

A Python framework to generate language parsers

Added to portage

2025-12-22

libnotify - 0.8.7
Ebuild name:

x11-libs/libnotify-0.8.7

Description

A library for sending desktop notifications

Added to portage

2025-12-22

libsigc++ - 3.8.0
Ebuild name:

dev-libs/libsigc++-3.8.0

Description

Typesafe callback system for standard C++

Added to portage

2025-12-22

limine - 10.5.0
Ebuild name:

sys-boot/limine-10.5.0

Description

Limine is a modern, advanced, and portable BIOS/UEFI multiprotocol bootloade

Added to portage

2025-12-22

localsearch - 3.10.2
Ebuild name:

app-misc/localsearch-3.10.2

Description

Indexer and search engine that powers desktop search for core GNOME com

Added to portage

2025-12-22

lxterminal - 0.4.0_p20230917-r1
Ebuild name:

lxde-base/lxterminal-0.4.0_p20230917-r1

Description

Lightweight vte-based tabbed terminal emulator for LXDE

Added to portage

2025-12-22

mcfly - 0.9.3
Ebuild name:

app-shells/mcfly-0.9.3

Description

Context-aware bash history search replacement (ctrl-r)

Added to portage

2025-12-22

mpv - 0.41.0
Ebuild name:

media-video/mpv-0.41.0

Description

Media player for the command line

Added to portage

2025-12-22

mpvqt - 1.1.1-r2
Ebuild name:

media-libs/mpvqt-1.1.1-r2

Description

libmpv wrapper for QtQuick2 and QML

Added to portage

2025-12-22

msgraph - 0.2.3-r1
Ebuild name:

net-libs/msgraph-0.2.3-r1

Description

GLib-based library for accessing online serive APIs using MS Graph protoc

Added to portage

2025-12-22

msgraph - 0.3.3
Ebuild name:

net-libs/msgraph-0.3.3

Description

GLib-based library for accessing online serive APIs using MS Graph protocol.

Added to portage

2025-12-22

musescore - 4.6.5
Ebuild name:

media-sound/musescore-4.6.5

Description

WYSIWYG Music Score Typesetter

Added to portage

2025-12-22

mydumper - 0.21.2.2
Ebuild name:

dev-db/mydumper-0.21.2.2

Description

A high-performance multi-threaded backup (and restore) toolset for MySQL

Added to portage

2025-12-22

nautilus - 49.2
Ebuild name:

gnome-base/nautilus-49.2

Description

Default file manager for the GNOME desktop

Added to portage

2025-12-22

nginx - 1.29.4
Ebuild name:

www-servers/nginx-1.29.4

Description

Added to portage

2025-12-22

openmpi - 5.0.9
Ebuild name:

sys-cluster/openmpi-5.0.9

Description

A high-performance message passing library (MPI)

Added to portage

2025-12-22

orca - 49.5
Ebuild name:

app-accessibility/orca-49.5

Description

Extensible screen reader that provides access to the desktop

Added to portage

2025-12-22

pmix - 5.0.9
Ebuild name:

sys-cluster/pmix-5.0.9

Description

The Process Management Interface (PMI) Exascale

Added to portage

2025-12-22

pnp4nagios - 0.6.26_p20241118
Ebuild name:

net-analyzer/pnp4nagios-0.6.26_p20241118

Description

A performance data analyzer for nagios

Added to portage

2025-12-22

prrte - 3.0.12
Ebuild name:

sys-cluster/prrte-3.0.12

Description

PMIx Reference RunTime Environment

Added to portage

2025-12-22

pyfakefs - 6.0.0
Ebuild name:

dev-python/pyfakefs-6.0.0

Description

A fake file system that mocks the Python file system modules

Added to portage

2025-12-22

pygresql - 6.2.0
Ebuild name:

dev-python/pygresql-6.2.0

Description

A Python interface for the PostgreSQL database

Added to portage

2025-12-22

pypdf - 6.5.0
Ebuild name:

dev-python/pypdf-6.5.0

Description

Python library to work with PDF files

Added to portage

2025-12-22

pyro5 - 5.16
Ebuild name:

dev-python/pyro5-5.16

Description

Distributed object middleware for Python (RPC)

Added to portage

2025-12-22

qemu - 10.0.7
Ebuild name:

app-emulation/qemu-10.0.7

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2025-12-22

qemu - 10.1.3
Ebuild name:

app-emulation/qemu-10.1.3

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2025-12-22

qgis - 3.44.6
Ebuild name:

sci-geosciences/qgis-3.44.6

Description

User friendly Geographic Information System

Added to portage

2025-12-22

qmidiarp - 0.7.1_p20251217-r1
Ebuild name:

media-sound/qmidiarp-0.7.1_p20251217-r1

Description

Arpeggiator, sequencer and MIDI LFO for ALSA

Added to portage

2025-12-22

reportlab - 4.4.7
Ebuild name:

dev-python/reportlab-4.4.7

Description

Tools for generating printable PDF documents from any data source

Added to portage

2025-12-22

rich-click - 1.9.5
Ebuild name:

dev-python/rich-click-1.9.5

Description

Format click help output nicely with rich

Added to portage

2025-12-22

rosegarden - 25.12
Ebuild name:

media-sound/rosegarden-25.12

Description

MIDI and audio sequencer and notation editor

Added to portage

2025-12-22

rtkit - 0.14
Ebuild name:

sys-auth/rtkit-0.14

Description

Realtime Policy and Watchdog Daemon

Added to portage

2025-12-22

sbsigntools - 0.9.5
Ebuild name:

app-crypt/sbsigntools-0.9.5

Description

Utilities for signing and verifying files for UEFI Secure Boot

Added to portage

2025-12-22

scdrand - 0.3.5
Ebuild name:

app-crypt/scdrand-0.3.5

Description

Feed kernel entropy pool from smartcard's TRNG

Added to portage

2025-12-22

sdmon - 0.9.0_p20250201
Ebuild name:

sys-block/sdmon-0.9.0_p20250201

Description

Get SD-card health data

Added to portage

2025-12-22

simdutf - 7.7.1
Ebuild name:

dev-cpp/simdutf-7.7.1

Description

Unicode validation and transcoding at billions of characters per second

Added to portage

2025-12-22

stalwart-cli - 0.15.1
Ebuild name:

net-mail/stalwart-cli-0.15.1

Description

Stalwart Mail Server command line utility

Added to portage

2025-12-22

stalwart-mail - 0.15.1
Ebuild name:

net-mail/stalwart-mail-0.15.1

Description

Stalwart Mail Server

Added to portage

2025-12-22

steve - 1.3.0
Ebuild name:

dev-build/steve-1.3.0

Description

A load-balancing jobserver for Gentoo

Added to portage

2025-12-22

system-config-printer - 1.5.18-r3
Ebuild name:

app-admin/system-config-printer-1.5.18-r3

Description

Graphical user interface for CUPS administration

Added to portage

2025-12-22

tifffile - 2025.12.20
Ebuild name:

dev-python/tifffile-2025.12.20

Description

Read and write TIFF files

Added to portage

2025-12-22

tinysparql - 3.10.1
Ebuild name:

app-misc/tinysparql-3.10.1

Description

Low-footprint RDF triple store with SPARQL 1.1 interface

Added to portage

2025-12-22

types-setuptools - 80.9.0.20251221
Ebuild name:

dev-python/types-setuptools-80.9.0.20251221

Description

Typing stubs for setuptools

Added to portage

2025-12-22

uritools - 6.0.1
Ebuild name:

dev-python/uritools-6.0.1

Description

RFC 3986-compliant URI parsing, classification and composition

Added to portage

2025-12-22

uvicorn - 0.40.0
Ebuild name:

dev-python/uvicorn-0.40.0

Description

Lightning-fast ASGI server implementation

Added to portage

2025-12-22

vss-text - 25.0.0
Ebuild name:

dev-ada/vss-text-25.0.0

Description

A high level string and text processing library

Added to portage

2025-12-22

vte - 0.80.4-r1
Ebuild name:

gui-libs/vte-0.80.4-r1

Description

Library providing a virtual terminal emulator widget

Added to portage

2025-12-22

vte - 0.80.4-r1
Ebuild name:

x11-libs/vte-0.80.4-r1

Description

Library providing a virtual terminal emulator widget

Added to portage

2025-12-22

vte - 0.82.2
Ebuild name:

gui-libs/vte-0.82.2

Description

Library providing a virtual terminal emulator widget

Added to portage

2025-12-22

vte - 0.82.2
Ebuild name:

x11-libs/vte-0.82.2

Description

Library providing a virtual terminal emulator widget

Added to portage

2025-12-22

vte-common - 0.82.2
Ebuild name:

gui-libs/vte-common-0.82.2

Description

Library providing a virtual terminal emulator widget

Added to portage

2025-12-22

webkit-gtk - 2.50.4-r410
Ebuild name:

net-libs/webkit-gtk-2.50.4-r410

Description

Open source web browser engine

Added to portage

2025-12-22

webkit-gtk - 2.50.4-r600
Ebuild name:

net-libs/webkit-gtk-2.50.4-r600

Description

Open source web browser engine

Added to portage

2025-12-22

wings - 2.2.6.1-r1
Ebuild name:

media-gfx/wings-2.2.6.1-r1

Description

Wings 3D is an advanced subdivision modeler

Added to portage

2025-12-22

wings - 2.3-r1
Ebuild name:

media-gfx/wings-2.3-r1

Description

Wings 3D is an advanced subdivision modeler

Added to portage

2025-12-22

wings - 2.4-r1
Ebuild name:

media-gfx/wings-2.4-r1

Description

Wings 3D is an advanced subdivision modeler

Added to portage

2025-12-22

wings - 2.4.1
Ebuild name:

media-gfx/wings-2.4.1

Description

Wings 3D is an advanced subdivision modeler

Added to portage

2025-12-22

xen - 4.20.2
Ebuild name:

app-emulation/xen-4.20.2

Description

The Xen virtual machine monitor

Added to portage

2025-12-22

xen-tools - 4.20.2
Ebuild name:

app-emulation/xen-tools-4.20.2

Description

Xen tools including QEMU and xl

Added to portage

2025-12-22

xfce4-terminal - 1.1.4-r1
Ebuild name:

x11-terms/xfce4-terminal-1.1.4-r1

Description

A terminal emulator for the Xfce desktop environment

Added to portage

2025-12-22

xfce4-terminal - 1.1.5-r1
Ebuild name:

x11-terms/xfce4-terminal-1.1.5-r1

Description

A terminal emulator for the Xfce desktop environment

Added to portage

2025-12-22

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 60.8 ms